type runtime.pageAlloc

20 uses

	runtime (current package)
		mgcscavenge.go#L675: func (p *pageAlloc) scavenge(nbytes uintptr, shouldStop func() bool, force bool) uintptr {
		mgcscavenge.go#L732: func (p *pageAlloc) scavengeOne(ci chunkIdx, searchIdx uint, max uintptr) uintptr {
		mheap.go#L71: 	pages pageAlloc // page allocation data structure
		mpagealloc.go#L186: type pageAlloc struct {
		mpagealloc.go#L312: func (p *pageAlloc) init(mheapLock *mutex, sysStat *sysMemStat, test bool) {
		mpagealloc.go#L345: func (p *pageAlloc) tryChunkOf(ci chunkIdx) *pallocData {
		mpagealloc.go#L356: func (p *pageAlloc) chunkOf(ci chunkIdx) *pallocData {
		mpagealloc.go#L364: func (p *pageAlloc) grow(base, size uintptr) {
		mpagealloc.go#L451: func (p *pageAlloc) enableChunkHugePages() {
		mpagealloc.go#L492: func (p *pageAlloc) update(base, npages uintptr, contig, alloc bool) {
		mpagealloc.go#L577: func (p *pageAlloc) allocRange(base, npages uintptr) uintptr {
		mpagealloc.go#L618: func (p *pageAlloc) findMappedAddr(addr offAddr) offAddr {
		mpagealloc.go#L654: func (p *pageAlloc) find(npages uintptr) (uintptr, offAddr) {
		mpagealloc.go#L879: func (p *pageAlloc) alloc(npages uintptr) (addr uintptr, scav uintptr) {
		mpagealloc.go#L940: func (p *pageAlloc) free(base, npages uintptr) {
		mpagealloc.go#L988: func (p *pageAlloc) markRandomPaddingPages(base uintptr, npages uintptr) {
		mpagealloc_64bit.go#L71: func (p *pageAlloc) sysInit(test bool) {
		mpagealloc_64bit.go#L100: func (p *pageAlloc) sysGrow(base, limit uintptr) {
		mpagecache.go#L78: func (c *pageCache) flush(p *pageAlloc) {
		mpagecache.go#L119: func (p *pageAlloc) allocToCache() pageCache {